std::isinf

From Cppreference

Jump to: navigation, search
Defined in header <cmath>

int isinf( float arg );
(since C++11)
int isinf( double arg );
(since C++11)
int isinf( long double arg );
(since C++11)

Determines if the given floating point number arg is positive or negative infinity.

[edit] Parameters

arg - floating point value

[edit] Return value

nonzero value if arg is infinite, 0 otherwise

[edit] See also

categorizes the given floating point value
(function)
(C++11)
checks if the given number has finite value
(function)
(C++11)
checks if the given number is NaN
(function)
(C++11)
checks if the given number is normal
(function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages